home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac 1993 September / clonecd / September 93.img / Australasian Legends / Commercial / Golden Micro Solutions / Commander Demo / Commander Demo.rsrc / TEXT_5011_ALERT.txt < prev    next >
Text File  |  1993-09-07  |  1KB  |  26 lines

  1. ¬†ALERT (message)
  2.                                                                                     Pg 29-2
  3.  
  4. message        String      Message to display in the alert
  5.  
  6.  
  7. ALERT displays a Note type alert box. The alert displays message and contains an OK button. The alert box can display up to 255 characters, depending on the widths of the characters contained in message.
  8.  
  9. Alerts are used to provide information (such as an error message) to the user without requiring any information to be returned. They are also useful during development for displaying status information (such as variable values) to the designer.
  10.  
  11.  
  12. The following example displays an alert showing information about a company. Notice that the string that is displayed contains carriage returns, which cause the string to wrap to the next line:
  13.  
  14. CR := Char (13)
  15. ALERT ("Company: " +[Companies]Name +CR+"People in company: " + String (Records in selection ([People])) + CR + "Number of parts they supply: " + String (Records in selection ([Parts])))
  16.  
  17.  
  18. NOTE: The code following the ALERT command till the end of the example should be on one line in the 4th DIMENSION procedure editor. It has been wrapped here to fit into the page size of this manual.
  19.  
  20.  
  21.  
  22. See also: ¬†Char, Records¬†in¬†selection, ¬†String
  23.  
  24.  
  25.  
  26.